home *** CD-ROM | disk | FTP | other *** search
/ SGI Developer Toolbox 6.1 / SGI Developer Toolbox 6.1 - Disc 4.iso / src / exampleCode / games / IndiZone / vroom / Row.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-08-02  |  2.1 KB  |  49 lines

  1. /*******************************************************************************
  2.  * Row.h: public header file for the Row widget
  3.  *         From:
  4.  *                   The X Window System, 
  5.  *            Programming and Applications with Xt
  6.  *                   OSF/Motif Edition
  7.  *         by
  8.  *                Douglas Young
  9.  *              Prentice Hall, 1990
  10.  *
  11.  *                 Example described on pages: 375-390
  12.  *
  13.  *
  14.  *  Copyright 1989 by Prentice Hall
  15.  *  All Rights Reserved
  16.  *
  17.  * This code is based on the OSF/Motif widget set and the X Window System
  18.  *
  19.  * Permission to use, copy, modify, and distribute this software for 
  20.  * any purpose and without fee is hereby granted, provided that the above
  21.  * copyright notice appear in all copies and that both the copyright notice
  22.  * and this permission notice appear in supporting documentation.
  23.  *
  24.  * Prentice Hall and the author disclaim all warranties with regard to this 
  25.  * software, including all implied warranties of merchantability and fitness.
  26.  * In no event shall Prentice Hall or the author be liable for any special,
  27.  * indirect or cosequential damages or any damages whatsoever resulting from 
  28.  * loss of use, data or profits, whether in an action of contract, negligence 
  29.  * or other tortious action, arising out of or in connection with the use 
  30.  * or performance of this software.
  31.  *
  32.  * Open Software Foundation is a trademark of The Open Software Foundation, Inc.
  33.  * OSF is a trademark of Open Software Foundation, Inc.
  34.  * OSF/Motif is a trademark of Open Software Foundation, Inc.
  35.  * Motif is a trademark of Open Software Foundation, Inc.
  36.  * DEC is a registered trademark of Digital Equipment Corporation
  37.  * HP is a registered trademark of the Hewlett Packard Company
  38.  * DIGITAL is a registered trademark of Digital Equipment Corporation
  39.  * X Window System is a trademark of the Massachusetts Institute of Technology
  40.  ******************************************************************************/
  41.  
  42.  
  43. #ifndef ROW_H
  44. #define ROW_H
  45. extern WidgetClass xsRowWidgetClass;
  46. typedef struct _XsRowClassRec *XsRowWidgetClass;
  47. typedef struct _XsRowRec      *XsRowWidget;
  48. #endif /* ROW_H */
  49.